built-in function - vertaling naar arabisch
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

built-in function - vertaling naar arabisch

FUNCTION IMPLEMENTED BY THE COMPILER
Builtin function; Intrinsic instructions; Built-in function

built-in function         
وظيفة مبيتة، وظيفة داخلية.
built-in test         
TYPE OF MECHANISM THAT PERMITS A MACHINE OR ELECTRONIC COMPONENT TO TEST ITSELF
MBIST; Built-in test
اختبار داخلي، اختبار مبيت.
built-in         
WIKIMEDIA DISAMBIGUATION PAGE
Built-in (disambiguation); Builtin; Built in
مُنْدَرِج

Definitie

built-in
Built-in devices or features are included in something as a part of it, rather than being separate.
...modern cameras with built-in flash units...
We're going to have built-in cupboards in the bedrooms.
= fitted
ADJ: ADJ n

Wikipedia

Intrinsic function

In computer software, in compiler theory, an intrinsic function (or built-in function) is a function (subroutine) available for use in a given programming language whose implementation is handled specially by the compiler. Typically, it may substitute a sequence of automatically generated instructions for the original function call, similar to an inline function. Unlike an inline function, the compiler has an intimate knowledge of an intrinsic function and can thus better integrate and optimize it for a given situation.

Compilers that implement intrinsic functions generally enable them only when a program requests optimization, otherwise falling back to a default implementation provided by the language runtime system (environment).

Intrinsic functions are often used to explicitly implement vectorization and parallelization in languages which do not address such constructs. Some application programming interfaces (API), for example, AltiVec and OpenMP, use intrinsic functions to declare, respectively, vectorizable and multiprocessing-aware operations during compiling. The compiler parses the intrinsic functions and converts them into vector math or multiprocessing object code appropriate for the target platform. Some intrinsics are used to provide additional constraints to the optimizer, such as values a variable cannot assume.